home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / GMS / GMSDev / Includes / clib / files_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-21  |  570 b   |  27 lines

  1. #ifndef  CLIB_FILES_PROTOS_H
  2. #define  CLIB_FILES_PROTOS_H
  3.  
  4. /*
  5. **   $VER: files_protos.h V1.0
  6. **
  7. **   C prototypes.
  8. **
  9. **   (C) Copyright 1996-1998 DreamWorld Productions.
  10. **       All Rights Reserved.
  11. */
  12.  
  13. #ifndef  DPKERNEL_H
  14. #include <dpkernel/dpkernel.h>
  15. #endif
  16.  
  17. BYTE * GetFComment(APTR Object);
  18. struct Time * GetFDate(APTR Object);
  19. LONG GetFPermissions(APTR Object);
  20. LONG GetFSize(APTR Object);
  21. LONG SetFComment(APTR Object, BYTE *Comment);
  22. LONG SetFDate(APTR Object, struct Time *);
  23. struct File * OpenFile(APTR Source, LONG Flags);
  24.  
  25. #endif /* CLIB_FILES_PROTOS_H */
  26.  
  27.